home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / modtcview.bas < prev    next >
Encoding:
BASIC Source File  |  2001-10-16  |  848 b   |  22 lines

  1. Attribute VB_Name = "modTCView"
  2. '******************************************************************'
  3. '*                                                                *'
  4. '*                      TurboCAD for Windows                      *'
  5. '*                   Copyright (c) 1993 - 2001                    *'
  6. '*             International Microcomputer Software, Inc.         *'
  7. '*                            (IMSI)                              *'
  8. '*                      All rights reserved.                      *'
  9. '*                                                                *'
  10. '******************************************************************'
  11.  
  12. Option Explicit
  13.  
  14. Global gxApp As XApplication
  15. Global gxDr As Drawing
  16. Global gxView As View
  17.  
  18. Sub Main()
  19.     Set gxApp = New XApplication
  20.     frmVbCamera.Show vbModal
  21. End Sub
  22.